type net/http.timeoutError

8 uses

	net/http (current package)
		client.go#L737: 				err = &timeoutError{err.Error() + " (Client.Timeout exceeded while awaiting headers)"}
		client.go#L994: 		err = &timeoutError{err.Error() + " (Client.Timeout or context cancellation while reading body)"}
		transport.go#L2768: type timeoutError struct {
		transport.go#L2772: func (e *timeoutError) Error() string     { return e.err }
		transport.go#L2773: func (e *timeoutError) Timeout() bool     { return true }
		transport.go#L2774: func (e *timeoutError) Temporary() bool   { return true }
		transport.go#L2775: func (e *timeoutError) Is(err error) bool { return err == context.DeadlineExceeded }
		transport.go#L2777: var errTimeout error = &timeoutError{"net/http: timeout awaiting response headers"}